home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / FLI106C.ZIP;1 / BLCCONS.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-12  |  1.0 KB  |  50 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.06c
  4. // Copyright (C) 1990, 1991, 1992
  5. // Software Dimensions
  6. //
  7. // BlazeClass
  8. //
  9.  
  10. #include "fli.h"
  11.  
  12. #ifdef __BCPLUSPLUS__
  13. #pragma hdrstop
  14. #endif
  15.  
  16. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17. //
  18. // BlazeClass(BlazeClass &_Blaze)
  19. //
  20. // Copy-Constructor for BlazeClass
  21. //
  22. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  23.  
  24. BlazeClass::BlazeClass(BlazeClass &_Blaze)
  25. {
  26.   OUTPUT=_Blaze.OUTPUT;
  27.   X=_Blaze.X;
  28.   Y=_Blaze.Y;
  29.   Color=_Blaze.Color;
  30.   Scrolling=_Blaze.Scrolling;
  31.   Clip=_Blaze.Clip;
  32.   WinHigh=_Blaze.WinHigh;
  33.   WinWide=_Blaze.WinWide;
  34.   WinX=_Blaze.WinX;
  35.   WinY=_Blaze.WinY;
  36.  
  37.   TopLeft=_Blaze.TopLeft;
  38.   TopCenter=_Blaze.TopCenter;
  39.   TopRight=_Blaze.TopRight;
  40.   CenterLeft=_Blaze.CenterLeft;
  41.   CenterFill=_Blaze.CenterFill;
  42.   CenterRight=_Blaze.CenterRight;
  43.   BottomLeft=_Blaze.BottomLeft;
  44.   BottomCenter=_Blaze.BottomCenter;
  45.   BottomRight=_Blaze.BottomRight;
  46.  
  47.   Center=0;
  48.   FlushRight=0;
  49. }
  50.